Postgres 数据库

删除数据库

问题:数据库锁住了
SELECT pg_terminate_backend(pid)
FROM pg_stat_activity
WHERE datname = ‘test’
AND pid <> pg_backend_pid();